get tomorrows date using moment

195

get tomorrows date using moment -

let today     = moment();

let tomorrow  = moment().add(1,'days');

let yesterday = moment().add(-1, 'days');

Comments

Submit
0 Comments